home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 / Ham Radio 2000.iso / ham2000 / misc / tasm / misc.zoo / moto.h < prev    next >
Text File  |  1991-05-24  |  405b  |  21 lines

  1. ; A few handy defines to make TASM more like typcial 
  2. ; motorola syntax
  3.  
  4. .MSFIRST        ; Most Significant byte first
  5.  
  6. #define EQU     .EQU
  7. #define ORG     .ORG
  8. #define RMB     .BLOCK
  9. #define FCB     .BYTE
  10. #define FCC     .TEXT
  11. #define FDB     .WORD
  12.  
  13. #define equ     .EQU
  14. #define org     .ORG
  15. #define rmb     .BLOCK
  16. #define fcb     .BYTE
  17. #define fcc     .TEXT
  18. #define fdb     .WORD
  19.  
  20.  
  21.